Comments
...moreTotal Articles Found: 205
Top sources:
Top Keywords:
Top Authors
Top Articles:
Published: 2024-06-24 20:32:40
Popularity: 12
Author: letsencrypt.org via jmhodges
Keywords:
Comments
...morePublished: 2024-06-19 06:01:05
Popularity: None
Author: arxiv.org via fro
Keywords:
Comments
...morePublished: 2024-06-17 12:58:34
Popularity: 4
Author: embracethered.com via kivikakk
Keywords:
Comments
...moreComments
...morePublished: 2024-06-04 12:30:14
Popularity: None
Author: scottarc.blog via lcapaldo
Keywords:
Comments
...morePublished: 2024-03-20 05:56:08
Popularity: None
Author: blog.slonser.info via freddyb
Keywords:
Comments
...morePublished: 2024-03-21 17:15:26
Popularity: 1630
Author: arstechnica.com via asymmetric
Keywords:
Comments
...moreComments
...morePublished: 2024-02-26 12:53:10
Popularity: 359
Author: fs111@users.lobste.rs (fs111)
Keywords:
Comments
...morePublished: 2024-02-01 07:17:04
Popularity: 5
Author: msanft@users.lobste.rs (msanft)
Keywords:
Comments
...morePublished: 2024-01-31 23:03:38
Popularity: None
Author: eyberg@users.lobste.rs (eyberg)
Keywords:
Comments
...morePublished: 2024-01-24 10:48:58
Popularity: 162
Author: deejayy@users.lobste.rs (deejayy)
Keywords:
Comments
...morePublished: 2024-01-07 03:43:29
Popularity: 9
Author: janus@users.lobste.rs (janus)
Keywords:
Comments
...morePublished: 2024-01-07 14:11:26
Popularity: 96
Author: andrewfromx@users.lobste.rs (andrewfromx)
Keywords:
Comments
...morePublished: 2023-12-13 18:15:53
Popularity: None
Author: Flow@users.lobste.rs (Flow)
Keywords:
Comments
...morePublished: 2023-12-15 21:36:19
Popularity: 9
Author: carlana@users.lobste.rs (carlana)
Keywords:
Comments
...morePublished: 2023-12-30 11:37:11
Popularity: None
Author: unlobito@users.lobste.rs (unlobito)
Keywords:
Comments
...morePublished: 2024-01-02 22:23:13
Popularity: 35
Author: skeptrune@users.lobste.rs (skeptrune)
Keywords:
Comments
...morePublished: 2023-10-27 16:01:41
Popularity: None
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...morePublished: 2023-10-28 13:20:42
Popularity: 6
Author: i_lost_my_bagel@users.lobste.rs (i_lost_my_bagel)
Keywords:
Comments
...morePublished: 2023-10-10 12:34:31
Popularity: 44
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...morePublished: 2023-10-20 15:16:05
Popularity: 17
Author: bsdmp@users.lobste.rs (bsdmp)
Keywords:
Comments
...morePublished: 2023-10-22 20:44:42
Popularity: None
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2023-10-25 18:52:58
Popularity: None
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...morePublished: 2023-10-14 03:44:10
Popularity: 25
Author: simonw@users.lobste.rs (simonw)
Keywords:
Comments
...morePublished: 2023-09-21 14:58:40
Popularity: None
Author: wayphinder@users.lobste.rs (wayphinder)
Keywords:
Comments
...morePublished: 2023-09-25 05:24:35
Popularity: 14
Author: jkoppel@users.lobste.rs (jkoppel)
Keywords:
Comments
...morePublished: 2023-05-10 23:17:00
Popularity: 1
Author: anton_samokhvalov@users.lobste.rs (anton_samokhvalov)
Keywords:
Comments
...morePublished: 2023-05-11 20:44:02
Popularity: None
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...morePublished: 2023-05-14 09:42:22
Popularity: None
Author: Hail_Spacecake@users.lobste.rs (Hail_Spacecake)
Keywords:
Comments
...morePublished: 2023-05-23 14:53:43
Popularity: None
Author: carlmjohnson@users.lobste.rs (carlmjohnson)
Keywords:
Comments
...morePublished: 2023-05-24 18:12:23
Popularity: None
Author: Zamicol@users.lobste.rs (Zamicol)
Keywords:
Comments
...morePublished: 2023-05-24 19:54:22
Popularity: 11
Author: crazyloglad@users.lobste.rs (crazyloglad)
Keywords:
Comments
...morePublished: 2023-05-26 08:50:42
Popularity: 13
Author: ubernostrum@users.lobste.rs (ubernostrum)
Keywords:
Comments
...morePublished: 2023-05-30 18:30:30
Popularity: 2
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...morePublished: 2023-05-31 03:08:44
Popularity: None
Author: cetera@users.lobste.rs (cetera)
Keywords:
Comments
...morePublished: 2023-04-29 09:51:10
Popularity: None
Author: jmillikin@users.lobste.rs (jmillikin)
Keywords:
Comments
...morePublished: 2023-03-30 11:54:28
Popularity: None
Author: losvedir@users.lobste.rs (losvedir)
Keywords:
I’m looking into implementing CORS (again, it seems like this is something that comes up every few years, and every few years I have to re-orient myself about how it all works), and as always it’s so confusing. (Here I’m talking about Access-Control-Allow-Origin type stuff, primarily, as CORS was initially a structured way to relax the same-origin policy on requests. I’m not as familiar or concerned with some of the newer headers for mitigating Spectre-type attacks. Should I be?) Any CORS experts out there with “best practice” recommendations? The security and threat model is so counterintuitive. Is the whole point of the CORS model basically to handle the browser’s decision to send cookies on every request? If the browser just refused to send cookies by default on non-same-origin requests and prompted the user to “Allow Once” or “Allow Always” like it does for saving passwords, wouldn’t that also solve the problem (and not to mention CSRF as well, which CORS doesn’t address). The server needs to handle arbitrary traffic from arbitrary clients, so resources should be protected appropriately. The only thing particularly unique about the browser is that it chooses to send cookie credentials, possibly against the user’s intentions. With all that in mind, it seems like these are maybe best practices (somewhat counterintuitively): When possible always set Access-Control-Allow-Origin: *. Everywhere online seems to recommend not including the header, if it’s not necessary, or being as specific as possible with the origins you allow and validating against a regex or an allowlist. But, since ACAO * does not allow credentials, then that’s actually safer, right? And if your backend has to expect traffic from, say, curl, or whatever, then you might as well acknowledge that fact fundamentally and say arbitrary JS scripts out there can also hit the endpoint (as long as, similarly to curl, they don’t include a cookie). Is there a downside to this approach? Access-Control-Allow-Credentials: true - this is the truly dangerous one, since the whole threat model of CORS is about a malicious website sending an authenticated request to your server without the user’s consent. So in this case, you do need to carefully set ACAO to specifically the origin that your own real site is at. What should you do about CORP, COEP, etc - all the new headers?
...morePublished: 2023-03-18 15:04:59
Popularity: None
Author: sethmlarson@users.lobste.rs (sethmlarson)
Keywords:
Comments
...morePublished: 2023-02-26 11:51:12
Popularity: 42894
Author: river@users.lobste.rs (river)
Keywords:
Comments
...morePublished: 2023-03-01 03:36:34
Popularity: None
Author: carlmjohnson@users.lobste.rs (carlmjohnson)
Keywords:
Comments
...morePublished: 2023-02-24 23:10:46
Popularity: 41
Author: Yogthos@users.lobste.rs (Yogthos)
Keywords:
Comments
...morePublished: 2023-02-27 19:12:44
Popularity: 4
Author: raymii@users.lobste.rs (raymii)
Keywords:
Comments
...morePublished: 2023-02-25 19:46:44
Popularity: 10
Author: river@users.lobste.rs (river)
Keywords:
Comments
...morePublished: 2023-02-08 03:04:49
Popularity: 16
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2023-02-09 10:38:00
Popularity: 3
Author: serhack@users.lobste.rs (serhack)
Keywords:
Comments
...morePublished: 2023-02-14 13:29:16
Popularity: 6
Author: jmillikin@users.lobste.rs (jmillikin)
Keywords:
Comments
...morePublished: 2023-01-24 03:13:08
Popularity: 11
Author: raymii@users.lobste.rs (raymii)
Keywords:
Comments
...morePublished: 2023-01-26 04:31:13
Popularity: None
Author: trousers@users.lobste.rs (trousers)
Keywords:
Comments
...morePublished: 2023-01-08 00:06:49
Popularity: 23
Author: GeoffWozniak@users.lobste.rs (GeoffWozniak)
Keywords:
Comments
...morePublished: 2023-01-11 10:08:53
Popularity: 384
Author: jummo@users.lobste.rs (jummo)
Keywords:
Comments
...morePublished: 2023-01-05 16:08:52
Popularity: None
Author: junkblocker@users.lobste.rs (junkblocker)
Keywords:
Comments
...morePublished: 2022-12-25 13:34:51
Popularity: 27
Author: raymii@users.lobste.rs (raymii)
Keywords:
Comments
...morePublished: 2022-12-13 15:05:01
Popularity: None
Author: barathr@users.lobste.rs (barathr)
Keywords:
Comments
...morePublished: 2022-12-17 21:18:58
Popularity: None
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2022-12-19 09:57:37
Popularity: 6
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...morePublished: 2022-12-27 15:06:32
Popularity: 69
Author: Yogthos@users.lobste.rs (Yogthos)
Keywords:
Comments
...morePublished: 2022-12-29 14:14:44
Popularity: 64
Author: mjec@users.lobste.rs (mjec)
Keywords:
Comments
...morePublished: 2022-12-17 19:11:31
Popularity: 3
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2022-12-11 04:13:10
Popularity: 6
Author: winter@users.lobste.rs (winter)
Keywords:
Comments
...morePublished: 2022-11-30 04:06:39
Popularity: 4
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2022-11-22 10:59:01
Popularity: None
Author: soatok@users.lobste.rs (soatok)
Keywords:
Comments
...morePublished: 2022-11-19 20:09:56
Popularity: 2
Author: raymii@users.lobste.rs (raymii)
Keywords:
Comments
...morePublished: 2022-10-18 18:03:35
Popularity: 101
Author: jamesog@users.lobste.rs (jamesog)
Keywords:
Comments
...morePublished: 2022-10-19 14:56:09
Popularity: None
Author: wizardishungry@users.lobste.rs (wizardishungry)
Keywords:
Comments
...morePublished: 2022-10-21 06:52:33
Popularity: 24
Author: sjamaan@users.lobste.rs (sjamaan)
Keywords:
Comments
...morePublished: 2022-10-25 17:24:37
Popularity: None
Author: Foxboron@users.lobste.rs (Foxboron)
Keywords:
Comments
...morePublished: 2022-10-26 14:18:14
Popularity: 39
Author: hoistbypetard@users.lobste.rs (hoistbypetard)
Keywords:
Comments
...morePublished: 2022-11-01 22:17:09
Popularity: None
Author: cadey@users.lobste.rs (cadey)
Keywords:
Comments
...morePublished: 2022-10-29 02:19:02
Popularity: 13
Author: l0b0@users.lobste.rs (l0b0)
Keywords:
Comments
...morePublished: 2022-10-05 15:14:14
Popularity: 4
Author: rdegges@users.lobste.rs (rdegges)
Keywords:
Comments
...morePublished: 2022-10-05 20:34:37
Popularity: 2
Author: lattera@users.lobste.rs (lattera)
Keywords:
Comments
...morePublished: 2022-10-03 19:56:02
Popularity: 2
Author: blake@users.lobste.rs (blake)
Keywords:
Comments
...morePublished: 2022-09-29 19:39:34
Popularity: 6
Author: df@users.lobste.rs (df)
Keywords:
Comments
...morePublished: 2022-09-26 15:02:36
Popularity: None
Author: juxhin@users.lobste.rs (juxhin)
Keywords:
Hi everyone, I’m one of the co-authors behind Have I Been Squatted (HIBS?). HIBS is a small side project in Rust & React that allows users to search whether domains have been typosquatted (an increasing security risk). It’s meant to be a platform to eventually enable users to continuously (and freely) monitor their domains similar to ;–have i been pwned?. The current version is very much in an alpha state but we released it in order to gauge community interest and receive your feedback on what can be added and improved. Hope you have fun with it and feel free to ask any questions! Comments
...morePublished: 2022-08-26 01:56:53
Popularity: 1
Author: lattera@users.lobste.rs (lattera)
Keywords:
Comments
...morePublished: 2022-08-28 02:56:28
Popularity: None
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2022-08-29 20:40:49
Popularity: 1408
Author: chuck@users.lobste.rs (chuck)
Keywords:
Comments
...morePublished: 2022-08-12 13:36:56
Popularity: None
Author: crazyloglad@users.lobste.rs (crazyloglad)
Keywords:
Comments
...morePublished: 2022-07-27 14:33:44
Popularity: None
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2022-07-19 12:38:57
Popularity: 68
Author: wizardishungry@users.lobste.rs (wizardishungry)
Keywords:
Comments
...morePublished: 2022-07-18 19:22:00
Popularity: 54
Author: rjzak@users.lobste.rs (rjzak)
Keywords:
Comments
...morePublished: 2022-07-18 14:01:32
Popularity: None
Author: juxhin@users.lobste.rs (juxhin)
Keywords:
Official announcement blog post - https://blog.exein.io/pulsar Comments
...morePublished: 2022-07-14 22:48:47
Popularity: None
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2022-07-12 17:07:29
Popularity: 9
Author: lattera@users.lobste.rs (lattera)
Keywords:
Comments
...morePublished: 2022-07-09 22:47:03
Popularity: 11
Author: Foxboron@users.lobste.rs (Foxboron)
Keywords:
Comments
...morePublished: 2022-07-05 15:54:14
Popularity: None
Author: Caustic@users.lobste.rs (Caustic)
Keywords:
Comments
...morePublished: 2022-06-22 10:46:03
Popularity: 3
Author: jbert@users.lobste.rs (jbert)
Keywords:
Comments
...morePublished: 2022-06-25 19:41:28
Popularity: 3
Author: aloha@users.lobste.rs (aloha)
Keywords:
Comments
...morePublished: 2022-06-22 18:59:30
Popularity: 26
Author: caius@users.lobste.rs (caius)
Keywords:
Comments
...morePublished: 2022-06-10 17:10:39
Popularity: None
Author: lattera@users.lobste.rs (lattera)
Keywords:
Comments
...morePublished: 2022-05-05 18:42:59
Popularity: None
Author: telemachus@users.lobste.rs (telemachus)
Keywords:
Comments
...morePublished: 2022-05-04 20:11:58
Popularity: None
Author: crazyloglad@users.lobste.rs (crazyloglad)
Keywords:
Comments
...morePublished: 2022-04-25 15:25:02
Popularity: None
Author: hanno@users.lobste.rs (hanno)
Keywords:
Comments
...morePublished: 2022-04-11 01:37:09
Popularity: None
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2022-03-14 14:42:35
Popularity: None
Author: hanno@users.lobste.rs (hanno)
Keywords:
Comments
...morePublished: 2022-03-15 04:46:33
Popularity: 416
Author: todb@users.lobste.rs (todb)
Keywords:
Comments
...morePublished: 2022-02-25 19:28:46
Popularity: 289
Author: atoponce@users.lobste.rs (atoponce)
Keywords:
Comments
...morePublished: 2022-02-26 18:07:49
Popularity: 12
Author: kngl@users.lobste.rs (kngl)
Keywords:
Comments
...morePublished: 2022-02-15 20:24:07
Popularity: 8
Author: lattera@users.lobste.rs (lattera)
Keywords:
Comments
...morePublished: 2022-02-10 19:43:49
Popularity: 4
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...morePublished: 2022-01-26 20:02:31
Popularity: None
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2022-01-18 12:06:54
Popularity: None
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...moreComments
...morePublished: 2021-12-30 23:55:39
Popularity: 6385
Author: Yogthos@users.lobste.rs (Yogthos)
Keywords:
Comments
...morePublished: 2021-12-29 23:01:06
Popularity: None
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2021-12-30 14:48:55
Popularity: 138
Author: adsouza@users.lobste.rs (adsouza)
Keywords:
Comments
...morePublished: 2021-12-28 18:22:38
Popularity: 4601
Author: gmem@users.lobste.rs (gmem)
Keywords:
Comments
...morePublished: 2021-12-18 14:53:59
Popularity: 151
Author: Yogthos@users.lobste.rs (Yogthos)
Keywords:
Comments
...morePublished: 2021-11-22 10:07:01
Popularity: None
Author: ignaloidas@users.lobste.rs (ignaloidas)
Keywords:
Comments
...morePublished: 2021-11-18 15:26:37
Popularity: 104
Author: napkindrawing@users.lobste.rs (napkindrawing)
Keywords:
Comments
...morePublished: 2021-09-17 14:08:49
Popularity: None
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...morePublished: 2021-09-22 19:05:21
Popularity: None
Author: vladislavp@users.lobste.rs (vladislavp)
Keywords:
Comments
...morePublished: 2021-09-02 16:15:43
Popularity: None
Author: xojoc@users.lobste.rs (xojoc)
Keywords:
Comments
...morePublished: 2021-09-13 20:47:37
Popularity: 2384
Author: awreece@users.lobste.rs (awreece)
Keywords:
Comments
...morePublished: 2021-08-11 15:49:46
Popularity: None
Author: mtnygard@users.lobste.rs (mtnygard)
Keywords:
Interesting analysis: open code + open data makes for open bugs. Add in some user controlled data and in this case it led to a (possibly temporary) $600M loss. Comments
...morePublished: 2021-08-06 13:46:18
Popularity: None
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2021-08-07 18:19:47
Popularity: None
Author: bfiedler@users.lobste.rs (bfiedler)
Keywords:
Comments
...morePublished: 2021-07-20 16:16:47
Popularity: None
Author: nixcraft@users.lobste.rs (nixcraft)
Keywords:
Comments
...morePublished: 2021-07-18 22:14:15
Popularity: 161
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2021-06-25 14:12:49
Popularity: 105
Author: hoistbypetard@users.lobste.rs (hoistbypetard)
Keywords:
Comments
...morePublished: 2021-06-09 17:56:46
Popularity: None
Author: luiz@users.lobste.rs (luiz)
Keywords:
Comments
...morePublished: 2021-06-22 21:46:30
Popularity: 88
Author: JulianWgs@users.lobste.rs (JulianWgs)
Keywords:
Comments
...morePublished: 2021-06-25 14:40:53
Popularity: 7946
Author: hoistbypetard@users.lobste.rs (hoistbypetard)
Keywords:
Comments
...morePublished: 2021-06-21 18:39:03
Popularity: 14
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2021-06-12 21:23:58
Popularity: None
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2021-06-03 17:07:50
Popularity: None
Author: kuijsten@users.lobste.rs (kuijsten)
Keywords:
Rowhammer attacks exploit electromagnetic interference among nearby DRAM cells to flip bits, corrupting data and altering system behavior. Unfortunately, DRAM vendors have opted for a blackbox approach to preventing these bit flips, exposing little information about in-DRAM mitigations. Despite vendor claims that their mitigations prevent Rowhammer, recent work bypasses these defenses to corrupt data. Further work shows that the Rowhammer problem is actually worsening in emerging DRAM and posits that system-level support is needed to produce adaptable and scalable defenses. Accordingly, we argue that the systems community can and must drive a fundamental change in Rowhammer mitigation techniques. In the short term, cloud providers and CPU vendors must work together to supplement limited in-DRAM mitigations—ill-equipped to handle rising susceptibility— with their own mitigations. We propose novel hardware primitives in the CPU’s integrated memory controller that would enable a variety of efficient software defenses, offering flexible safeguards against future attacks. In the long term, we assert that major consumers of DRAM must persuade DRAM vendors to provide precise information on their defenses, limitations, and necessary supplemental solutions. Comments
...morePublished: 2021-05-25 18:47:19
Popularity: 133
Author: leandro@users.lobste.rs (leandro)
Keywords:
Comments
...morePublished: 2021-05-27 02:35:38
Popularity: None
Author: crazyloglad@users.lobste.rs (crazyloglad)
Keywords:
Comments
...morePublished: 2021-05-21 13:34:35
Popularity: 4152
Author: atoponce@users.lobste.rs (atoponce)
Keywords:
Comments
...morePublished: 2021-05-11 19:44:28
Popularity: None
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2021-05-08 06:44:31
Popularity: 20
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2021-05-04 17:05:34
Popularity: 46
Author: johnLate@users.lobste.rs (johnLate)
Keywords:
See also: Exim 4.94.2 - security update released (oss-security) Comments
...morePublished: 2021-04-26 12:55:12
Popularity: 8
Author: voutilad@users.lobste.rs (voutilad)
Keywords:
Comments
...morePublished: 2021-04-30 13:38:10
Popularity: 38
Author: whereswaldon@users.lobste.rs (whereswaldon)
Keywords:
Comments
...morePublished: 2021-03-18 09:58:29
Popularity: 16
Author: msfjarvis@users.lobste.rs (msfjarvis)
Keywords:
Comments
...morePublished: 2021-03-12 17:54:13
Popularity: None
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...morePublished: 2021-03-08 06:13:48
Popularity: 4
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2021-03-07 19:13:58
Popularity: 49
Author: raymii@users.lobste.rs (raymii)
Keywords:
Comments
...morePublished: 2021-03-01 10:20:38
Popularity: 105
Author: jvoisin@users.lobste.rs (jvoisin)
Keywords:
Comments
...morePublished: 2021-02-09 01:07:45
Popularity: 12
Author: noptys@users.lobste.rs (noptys)
Keywords:
Comments
...morePublished: 2021-02-09 14:45:32
Popularity: 446
Author: Nesh@users.lobste.rs (Nesh)
Keywords:
Comments
...morePublished: 2021-02-09 13:13:58
Popularity: 2003
Author: arp242@users.lobste.rs (arp242)
Keywords:
Comments
...morePublished: 2021-01-27 18:40:22
Popularity: 137
Author: freddyb@users.lobste.rs (freddyb)
Keywords:
Comments
...morePublished: 2021-01-30 20:59:09
Popularity: 4
Author: eau@users.lobste.rs (eau)
Keywords:
In this paper we introduce partitioning oracles, a new class of decryption error oracles which, conceptually, take a ciphertext as input and output whether the decryption key belongs to some known subset of keys. Partitioning oracles can arise when encryption schemes are not committing with respect to their keys. We detail adaptive chosen ciphertext attacks that exploit partitioning oracles to efficiently recover passwords and de-anonymize anonymous communications. The attacks utilize efficient key multi-collision algorithms—a cryptanalytic goal that we define—against widely used authenticated encryption with associated data (AEAD) schemes, including AES-GCM, XSalsa20/Poly1305, and ChaCha20/Poly1305. We build a practical partitioning oracle attack that quickly recovers passwords from Shadowsocks proxy servers. We also survey early implementations of the OPAQUE protocol for password-based key exchange, and show how many could be vulnerable to partitioning oracle attacks due to incorrectly using non-committing AEAD. Our results suggest that the community should standardize and make widely available key-committing AEAD to avoid such vulnerabilities. Comments
...morePublished: 2021-01-26 17:24:22
Popularity: 3701
Author: lattera@users.lobste.rs (lattera)
Keywords:
Comments
...morePublished: 2020-12-19 14:25:50
Popularity: 226
Author: wizardishungry@users.l.lobste.rs (wizardishungry)
Keywords:
Comments
...morePublished: 2021-01-17 15:37:46
Popularity: 8
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2021-01-14 14:48:28
Popularity: 230
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2020-12-22 22:59:48
Popularity: 24
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2020-12-19 14:25:50
Popularity: 210
Author: wizardishungry@users.lobste.rs (wizardishungry)
Keywords:
Comments
...morePublished: 2020-10-08 02:50:25
Popularity: 1398
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2020-09-18 23:15:47
Popularity: 107
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2020-09-17 14:33:15
Popularity: None
Author: krn@users.lobste.rs (krn)
Keywords:
Comments
...morePublished: 2020-09-04 11:22:19
Popularity: 80
Author: sevan@users.lobste.rs (sevan)
Keywords:
Comments
...morePublished: 2020-09-04 20:59:39
Popularity: 209
Author: atoponce@users.lobste.rs (atoponce)
Keywords:
Comments
...morePublished: 2020-09-10 03:23:09
Popularity: 8
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2020-09-12 03:20:23
Popularity: None
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2020-09-05 18:19:40
Popularity: 4
Author: ondrej@users.lobste.rs (ondrej)
Keywords:
Comments
...morePublished: 2020-08-07 18:49:44
Popularity: None
Author: Helithumper@users.lobste.rs (Helithumper)
Keywords:
Comments
...morePublished: 2020-07-27 22:50:44
Popularity: None
Author: ggarron@users.lobste.rs (ggarron)
Keywords:
Comments
...morePublished: 2020-07-19 13:57:20
Popularity: 167
Author: josuah@users.lobste.rs (josuah)
Keywords:
https://nvd.nist.gov/vuln/detail/CVE-2020-13777 https://github.com/0xxon/cve-2020-13777 Comments
...morePublished: 2020-07-03 20:41:25
Popularity: 2001
Author: hwayne@users.lobste.rs (hwayne)
Keywords:
Comments
...morePublished: 2020-07-03 00:32:52
Popularity: None
Author: bjg@users.lobste.rs (bjg)
Keywords:
Comments
...morePublished: 2020-06-18 09:15:47
Popularity: 375
Author: gerikson@users.lobste.rs (gerikson)
Keywords:
Comments
...morePublished: 2020-06-14 10:57:59
Popularity: 8
Author: zx2c4@users.lobste.rs (zx2c4)
Keywords:
Comments
...morePublished: 2020-05-27 19:06:47
Popularity: 499
Author: minimax@users.lobste.rs (minimax)
Keywords:
Comments
...morePublished: 2020-06-10 07:17:43
Popularity: 413
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2020-05-28 15:18:20
Popularity: 69
Author: dijit@users.lobste.rs (dijit)
Keywords:
Comments
...morePublished: 2020-05-07 19:38:02
Popularity: 1950
Author: Teckla@users.lobste.rs (Teckla)
Keywords:
Comments
...morePublished: 2020-05-13 04:07:58
Popularity: 35
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2020-04-23 21:06:52
Popularity: 4
Author: pawurb@users.lobste.rs (pawurb)
Keywords:
Comments
...morePublished: 2020-04-24 18:18:26
Popularity: 4
Author: FiloSottile@users.lobste.rs (FiloSottile)
Keywords:
Comments
...morePublished: 2020-04-03 08:57:50
Popularity: 4
Author: dl@users.lobste.rs (dl)
Keywords:
Comments
...morePublished: 2020-04-01 16:06:50
Popularity: 11020
Author: cadey@users.lobste.rs (cadey)
Keywords:
Comments
...morePublished: 2020-04-02 00:57:39
Popularity: 64
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2020-03-24 04:42:45
Popularity: 2475
Author: r31r06@users.lobste.rs (r31r06)
Keywords:
Comments
...morePublished: 2020-03-07 03:25:48
Popularity: 3680
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2020-02-24 17:24:56
Popularity: 4
Author: lattera@users.lobste.rs (lattera)
Keywords:
Comments
...morePublished: 2020-02-25 05:51:41
Popularity: None
Author: fro@users.lobste.rs (fro)
Keywords:
Comments
...morePublished: 2020-02-29 18:51:54
Popularity: 147
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2020-02-19 07:22:04
Popularity: 4
Author: Siosm@users.lobste.rs (Siosm)
Keywords:
Comments
...morePublished: 2020-02-11 09:37:33
Popularity: 4
Author: ceh@users.lobste.rs (ceh)
Keywords:
Comments
...morePublished: 2020-02-16 05:45:27
Popularity: 126
Author: calvin@users.lobste.rs (calvin)
Keywords:
Comments
...morePublished: 2020-01-29 07:15:06
Popularity: 921
Author: zoranzaric@users.lobste.rs (zoranzaric)
Keywords:
Comments
...morePublished: 2024-05-09 15:10:22
Popularity: None
Author: github.com via df
Keywords:
Comments
...moreComments
...morePublished: 2024-05-14 01:55:53
Popularity: 2
Author: openwall.com via crazyloglad
Keywords:
Comments
...moreThis is a follow up to https://lobste.rs/s/cy9i87/how_empty_s3_bucket_can_make_your_aws_bill. Comments
...morePublished: 2024-05-14 14:00:58
Popularity: None
Author: blog.trailofbits.com by yossarian
Keywords:
Comments
...morePublished: 2024-05-12 22:08:01
Popularity: None
Author: dev.to via doriancodes
Keywords:
Comments
...moreComments
...morePublished: 2024-04-24 11:11:17
Popularity: 898
Author: youtube.com via mikejsavage
Keywords:
Comments
...morePublished: 2024-06-01 11:38:06
Popularity: None
Author: huggingface.co via mark
Keywords:
Comments
...morePublished: 2024-05-20 12:25:33
Popularity: None
Author: codeanlabs.com via freddyb
Keywords:
Comments
...morePublished: 2024-05-23 15:04:20
Popularity: None
Author: blog.lastpass.com via atoponce
Keywords:
Comments
...morePublished: 2024-05-23 21:14:57
Popularity: None
Author: swarm.ptsecurity.com via freddyb
Keywords:
Comments
...morePublished: 2024-07-15 22:26:41
Popularity: None
Author: securedrop.org via legoktm
Keywords:
Comments
...moreComments
...morePublished: 2024-07-25 19:16:14
Popularity: 14
Author: arstechnica.com via asymmetric
Keywords:
Comments
...morehttps://lobste.rs/s/t2hj6o/crowdstrike_timeline_mystery https://www.bitsight.com/blog/crowdstrike-timeline-mystery In the comments on this article, I asked a question that no one answered and it’s still bugging me so I’ll ask it again: How does one company know so much about another company’s traffic?
...moreComments
...morePublished: 2024-08-28 15:55:44
Popularity: None
Author: github.com by eaytin
Keywords:
Show HN: Permify 1.0 - Open-source fine-grained authorization service Permify was born out of our repeated struggles with authorization. Like any other piece of software, authorization starts small but as things grow scaling it becomes a real pain and begins to hinder product development processes. Ad-hoc authorization systems scattered throughout your app’s codebase are hard to manage, reason about, and iterate on as the company grows. Also you will need to have more specific access controls as things grow. Traditional approaches like RBAC is inefficient for defining granular permissions such as resource-specific, hierarchical, or context-aware permissions. Architecture is another problem, in a distributed system you’re going to need a solid plan to manage permissions between your services — all while ensuring high availability and providing low latency in access checks for sure. We’ve created an open-source project to eliminate the authorization burden for devs. It’s Permify, an Authorization-as-a-Service to help developers build and manage their authorization in a scalable, secure, and extendable manner. And last week, we released the first major version (v1.0.0) of it! Here is how Permify helps you handle authorization. - Centralize & Standardize Your Authorization: Abstract your authorization logic from your codebase and application logic to easily reason, test, and debug your authorization. Treat your authorization as a sole entity and move faster within your core development. - Build Granular Permissions For Any Case You Have: You can create granular (resource-specific, hierarchical, context aware, etc) permissions and policies using Permify’s domain specific language that is compatible with RBAC, ReBAC and ABAC. - Set Custom Authorization For Your Tenants: Set up isolated authorization logic and custom permissions for your vendors/organizations (tenants) and manage them in a single place. - Scale Your Authorization As You Wish: Achieve lightning-fast response times down to 10ms for access checks with a proven infrastructure inspired by Google Zanzibar, Google’s Consistent, Global Authorization System. Try it out and send any feedback our way! Comments
...morePublished: 2024-09-01 09:08:00
Popularity: None
Author: kittenlabs.de via jummo
Keywords:
Comments
...morePublished: 2024-09-03 21:08:32
Popularity: None
Author: landlock.io via fro
Keywords:
Comments
...more